home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / COMBOBOX.PAK / COMBOBOX.RC < prev    next >
Text File  |  1997-05-06  |  1KB  |  52 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (C) 1991, 1995 by Borland International, All Rights Reserved
  4. //----------------------------------------------------------------------------
  5. #ifndef WORKSHOP_INVOKED
  6. # include <windows.h>
  7. #endif
  8. #include <owl/owlapp.rc>         // default owl app icon
  9. #include <owl/mdi.rh>
  10. #include <owl/inputdia.rh>
  11. #include <owl/inputdia.rc>
  12. #include <owl/window.rh>
  13. #include <owl/except.rc>
  14. #include "combobox.rh"
  15.  
  16. IDM_COMBOBOX MENU
  17. BEGIN
  18.    POPUP "&ComboBox"
  19.    BEGIN
  20.       MENUITEM "&Simple", CM_SIMPLE
  21.       MENUITEM "Drop &Down", CM_DROPDOWN
  22.       MENUITEM "Drop Down &List", CM_DROPDOWN_LIST
  23.       MENUITEM SEPARATOR
  24.       MENUITEM "&Exit", CM_EXIT
  25.    END
  26.  
  27.    POPUP "&Add"
  28.    BEGIN
  29.       MENUITEM "Add &String", CM_ADD_STRING
  30.       MENUITEM "Add String &At", CM_ADD_STRING_AT
  31.    END
  32.  
  33.    POPUP "&Search"
  34.    BEGIN
  35.       MENUITEM "Find &String", CM_FIND_STRING
  36.       MENUITEM "Find String &At", CM_FIND_STRING_AT
  37.    END
  38.  
  39.    POPUP "&Delete"
  40.    BEGIN
  41.       MENUITEM "Delete &String", CM_DELETE_STRING
  42.       MENUITEM "Delete &At", CM_DELETE_STRING_AT
  43.    END
  44.  
  45.    POPUP "&Other"
  46.    BEGIN
  47.       MENUITEM "&Clear", CM_CLEAR
  48.       MENUITEM "&Show", CM_SHOW_LIST
  49.       MENUITEM "&Hide", CM_HIDE_LIST
  50.    END
  51. END
  52.